home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / gnuplotMode.tcl < prev    next >
Encoding:
Text File  |  1998-05-23  |  70.3 KB  |  2,527 lines  |  [TEXT/ALFA]

  1. #  
  2. # "gnuplotMode.tcl"  
  3. #                                    created: 26/4/97 {7:59:36 pm} 
  4. #                                last update: 23/5/98 {8:25:15 pm} 
  5. #  Author: Jeff Schindall
  6. #  E-mail: <mailto:schindall@nrl.navy.mil>
  7. #    mail: Naval Research Laboratory 
  8. #          Acoustics Division --- Code 7120
  9. #          4555 Overlook Ave SW
  10. #          Washington, DC, 20375 USA ]
  11. #    
  12. # gnuplotMode.tcl, Version 1.83       For  gnuplot 3.6
  13. #
  14. # This is a set of TCL proc's that allow the shareware Macintosh 
  15. # text editor Alpha to serve as a front end for GNUPLOT for 
  16. # Macintosh version 3.6. This script requires Alpha 7.0 or later.
  17. #
  18. # Just use 'shift-ctrl-g' to launch a gnuplot console
  19. # (Note: Vince updated this file for use with Alpha 7.1b10)
  20. #############################################################################
  21. #
  22. # Autoload procedures
  23. #
  24. #
  25. alpha::mode GPLT 1.9b2 dummyGPLT {*.gp *.gnu *.gnp *.gplt *.GP *.GNU *.GNP *.GPLT }  \
  26.   GnuplotMenu {
  27.     addMenu GnuplotMenu "•415"
  28.     set modeCreator(GPLT) GPLT
  29.     set modeCreator(GPSE) GPLT
  30.     # Set GLOBAL mode binding to bring up gnuplot Console
  31.     Bind 'g' <sz> GP_Console
  32.     Bind 'n' <sc> GP_NewWindow
  33. }
  34.  
  35. ########################################################################
  36. #
  37. #  This mode was written by Jeff Schindall.  Some code was pinched from 
  38. #  other TCL files distributed with Alpha and matlab.tcl.
  39. #   
  40. #  Comments, suggestions, and bug reports should be sent to Jeff at
  41. #     mailto:schindall@nrl.navy.mil
  42. #
  43. #  You should be able to find the most recent current version of this
  44. #  gnuplotMode.tcl and the server app script at 
  45. #      
  46. #      ftp://ftp.ee.gatech.edu/pub/mac/gnuplot
  47. #
  48. #   and the most recent bleeding edge version at 
  49. #
  50. #      ftp://wave1m.nrl.navy.mil/pub/gnuplotMode.tcl.gz
  51. #
  52. #######################################################################
  53. #                                                                        
  54. #     Version History:                                                
  55. #                                                                        
  56. #         1.6    12/23/96                                                   
  57. #         -----------------------------------------------
  58. #         Floating palatte now very usefull.  User can run a script
  59. #         by selecting a script menu item, or edit the script by
  60. #         selecting the script menu item with the option key held down
  61. #
  62. #         1.5.9b    12/10/96                                                   
  63. #         -----------------------------------------------
  64. #         repaired broken scripts menu
  65. #         added a "edit scripts" menu----eventually, this one
  66. #         will go away, but the functionality will be retained
  67. #
  68. #         1.5.9    12/05/96                                                   
  69. #         -----------------------------------------------
  70. #         repaired broken pwd display
  71. #
  72. #         1.5.8    12/05/96                                                   
  73. #         -----------------------------------------------
  74. #         plot '-' now works
  75. #         pause in demo-mode works better
  76. #         added option to rebuild scripts menu
  77. #
  78. #         1.5.7    11/13/96                                                   
  79. #         -----------------------------------------------
  80. #         Check OUTP event for "Sorry, " string
  81. #         so that help for unknown item will be sent to console
  82. #         rather than a new output terminal page
  83. #
  84. #         1.5.6    11/07/96                                                   
  85. #         -----------------------------------------------
  86. #          Fixed a few floating menu buggers
  87. #
  88. #         1.5.5    11/06/96                                                   
  89. #         -----------------------------------------------
  90. #          Added a "Scripts" menu which auto loads any script
  91. #         in gnuplots "Scripts" folder (or subfolder)
  92. #         Made terminal output window creation faster
  93. #                                                                        
  94. #         1.5.4    11/05/96                                                   
  95. #         -----------------------------------------------
  96. #          Added terminal output windows for PS/TeX/MIF/etc.
  97. #                                                                        
  98. #         1.5.3    11/02/96                                                   
  99. #         -----------------------------------------------
  100. #          See 1.5.2
  101. #                                                                        
  102. #         1.5.2    11/02/96                                                   
  103. #         -----------------------------------------------
  104. #          Attempt to fix ome context switching weirdness
  105. #                                                                        
  106. #         1.5.1    10/23/96                                                   
  107. #         -----------------------------------------------
  108. #          Added some more apple event and floating palatte 
  109. #           options.
  110. #
  111. #         1.5    10/22/96                                                   
  112. #         -----------------------------------------------
  113. #          Slight bug fixes
  114. #
  115. #         1.5b3    07/18/96                                                   
  116. #         -----------------------------------------------
  117. #          Now works with Alpha 6.1 and higher.
  118. #         Added Floating menu...
  119. #
  120. #         1.5b2    07/16/96                                                   
  121. #         -----------------------------------------------
  122. #          Now works with Alpha 6.1 and higher.
  123. #
  124. #         1.5b1    07/02/96                                                   
  125. #         -----------------------------------------------
  126. #          Modify code so that it is compliant with the new
  127. #            mode conventions Pete added to 6.2 (see changes file).
  128. #         This script should still work for Alpha pre 6.2!
  129. #          Nifty self-installer!
  130. #                                                                          
  131. #                                                                          
  132. #         1.4.4    04/26/96                                                   
  133. #         -----------------------------------------------
  134. #          Modify trap for broken eventhandler on 68k                 
  135. #              so that pause works correctly and so that        
  136. #              gnuplot can bring itself to the front            
  137. #                                                                          
  138. #                                                                          
  139. #         1.4.3    04/24/96                                                  
  140. #         -----------------------------------------------
  141. #          Add trap for broken eventhandler on 68k                     
  142. #                                                                          
  143. #         1.4.2    04/17/96                                                
  144. #         -----------------------------------------------
  145. #          Let alpha do bookkeeping on globals                         
  146. #                                                                          
  147. #         1.4.1    04/15/96                                                       
  148. #         -----------------------------------------------
  149. #          Repaired broken quit and switchto menu options         
  150. #                                                                          
  151. #                                                                          
  152. #         1.4.0    04/14/96                                                       
  153. #         -----------------------------------------------
  154. #          GPLT mode preferences accessable from                  
  155. #            config:currentmode:flags... menu            
  156. #          Keyword coloring now works and is auto-sourced
  157. #            whenever GPTLPrefs.tcl is closed                          
  158. #          Reorganized and added to gnuplot menu            
  159. #          Reorganized all mode specifice procedures and 
  160. #             variable names                                        
  161. #                                                                          
  162. #                                                                          
  163. #         1.3.9    04/10/96                                                       
  164. #         -----------------------------------------------
  165. #          Keyword coloring editable from gnuplot pref menu.        
  166. #          gnuplot pref menu re-arranged                                  
  167. #          this package should display the path                       
  168. #             on the message bar                                              
  169. #                                                                          
  170. #                                                                          
  171. #         1.3.8    03/13/96                                                       
  172. #         -----------------------------------------------
  173. #          Re-arranged some code.                                  
  174. #                                                                                   
  175. #                                                                          
  176. #         1.3.7    03/13/96                                                       
  177. #         -----------------------------------------------
  178. #          Added support for cwd display on message bar    
  179. #                                                                                   
  180. #                                                                          
  181. #         1.3.6    02/26/96                                                       
  182. #         -----------------------------------------------
  183. #          Added graph button preference and repaired        
  184. #        my broken closeHook procedure                         
  185. #                                                                          
  186. #         1.3.5    02/01/96                                                       
  187. #         -----------------------------------------------
  188. #          Some minor fixes to console routines                
  189. #                                                                          
  190. #                                                                        
  191. #         1.3.4    02/01/96                                                       
  192. #         -----------------------------------------------
  193. #       Added "iconic" graph window which switches to             
  194. #               the gnuplot application                            
  195. #          Added a "gnuplot prefs" submenu                    
  196. #                                                                        
  197. #         1.3.3    12/20/95                                                       
  198. #         -----------------------------------------------
  199. #       Added Live History window                                       
  200. #          Added a function sub-menu                            
  201. #                                                                         
  202. #                                                                        
  203. #         1.3.2    12/15/95                                                       
  204. #         -----------------------------------------------
  205. #       History dump Really working this time.......           
  206. #          Included a kludge eventHander: GPIC EXEC        
  207. #             for Dave (temporary)                                
  208. #                                                                        
  209. #         1.3.1    12/14/95                                                       
  210. #         -----------------------------------------------
  211. #          Consolidated console and script editor modes.    
  212. #          Supports server once again.                           
  213. #       History dump working.......                            
  214. #                                                                        
  215. #                                                                        
  216. #         1.3    12/09/95                                                           
  217. #         -----------------------------------------------
  218. #          Should work with gnuplot app and              
  219. #          Fixed an "unknown" bug---thanks Vince            
  220. #          Files with gnuplot creator open in gnuplot mode
  221. #          Added several eventHandler's to work with the          
  222. #         gnuplot's new personality module                     
  223. #       NOTE:  No longer supports the gnuplot server app,      
  224. #              but I might add it back in later...             
  225. #                                                                        
  226. #         1.2.5    8/29/95                                            
  227. #         -----------------------------------------------
  228. #           File type as well as creator settings in place
  229. #                                                                        
  230. #                                                                        
  231. #         1.2.4    8/28/95                                            
  232. #         -----------------------------------------------
  233. #            I honestly don't recall                                
  234. #                                                                        
  235. #         1.2.3    8/27/95                                            
  236. #         -----------------------------------------------
  237. #           Fixed a few prompt related items.                
  238. #            I need to clean up the code a bit                
  239. #            especially in the console output routines        
  240. #                                                                        
  241. #         1.2.2    8/23/95                                            
  242. #         -----------------------------------------------
  243. #           Repaired help/prompting/etc which broke in    
  244. #                1.2.1                                                    
  245. #            DoSelection works for multiple lines            
  246. #                                                                        
  247. #                                                                        
  248. #         1.2.1    8/23/95                                            
  249. #         -----------------------------------------------
  250. #           Now works with unthreaded 68k systems                       
  251. #                                                                        
  252. #                                                                        
  253. #         1.2    8/23/95                                                
  254. #         -----------------------------------------------
  255. #           Deal w/"pause -1"     properly                                   
  256. #            cmd-dbl-click now works for all prompts         
  257. #            Cleaned up set output creator                        
  258. #                                                                          
  259. #                                                                        
  260. #         1.1    8/22/95                                                
  261. #         -----------------------------------------------
  262. #           Set output creators from gnuplot menu            
  263. #            Quit Working properly once again                    
  264. #            Added ERRP eventHandler for those w/o the             
  265. #          Thread Manager                                        
  266. #                                                                        
  267. #         1.0    8/21/95  (these release numbers are backwards)        
  268. #         -----------------------------------------------
  269. #           First working release                                 
  270. #                                                                        
  271. #    ============= Below were really beta's ==================== 
  272. #                                                                        
  273. #         1.0.6    8/17/95                                            
  274. #         -----------------------------------------------
  275. #           Cleaned up several procs                            
  276. #            Quit now works properly                                
  277. #                                                                        
  278. #                                                                        
  279. #         1.0.5    8/16/95                                            
  280. #         -----------------------------------------------
  281. #             replaced 'dosc' w/AEBuild                            
  282. #             added eventHandler  (thanks Dave)                    
  283. #             dumped "clean" window since Pete will            
  284. #                add this functionality to "new" in 6.0.2    
  285. #                                                                        
  286. #                                                                        
  287. #         1.0.4    8/12/95                                            
  288. #         -----------------------------------------------
  289. #             new modeVar to keep console "clean"             
  290. #                                                                        
  291. #                                                                        
  292. #         1.0.3    8/12/95                                            
  293. #         -----------------------------------------------
  294. #             Fixed bugs in closing console window            
  295. #             Added wristwatch cursor while waiting for gnuplot        
  296. #                                                                        
  297. #         1.0.2    8/11/95                                            
  298. #         -----------------------------------------------
  299. #         When console window is closed the gnuplot    
  300. #              app is quit and user is prompted to save    
  301. #          the Alpha/gnuplot history                        
  302. #                                                                        
  303. #         Command-Dbl-Click anywhere between gnuplot     
  304. #              prompts to select gnuplot output.  Nice        
  305. #          if you send term output to the console.        
  306. #                                                                        
  307. #         1.0.1    8/8/95                                            
  308. #         -----------------------------------------------
  309. #            Handles multiplot mode                                
  310. #             set output file CREATOR modeVar    (not yet)    
  311. #                                                                         
  312. #                                                                        
  313. #         1.0    8/7/95                                                
  314. #         -----------------------------------------------
  315. #            Now works with 3.6 (but not with 3.5)            
  316. #                                                                         
  317. #    =======================================================        
  318. #                                                                         
  319. #         0.4    8/3/95                                                
  320. #         -----------------------------------------------
  321. #           user specified colorizing through check pop-up       
  322. #             menu in GNUc console.  You must quit alpha and       
  323. #             restart to see the effects.  Also, you must          
  324. #         make sure that keywords and colors don't overlap.    # 
  325. #                                                              
  326. #                                                                        
  327. #         0.3    8/3/95                                                
  328. #         -----------------------------------------------
  329. #             Console position remembered between sessions
  330. #                                                                        
  331. #              Enabled command history to be dumped to a window        
  332. #                                                                  
  333. #                                                                        
  334. #         0.2    8/2/95                                                
  335. #         -----------------------------------------------
  336. #             Added a    Switch to gnuplot    menu option            
  337. #                                                                        
  338. #             Added Console modeVar                                        
  339. #                                                                        
  340. #         Added run in background modeVar                           
  341. #                                                                        
  342. #             Command History mostly working in console.    
  343. #                                                                        
  344. #             Cleaned    things up a    bit.                            
  345. #                                                                        
  346. #                                                                        
  347. #         0.1    8/1/95                                                
  348. #         -----------------------------------------------
  349. #             converted matlab.tcl to gnuplot.tcl            
  350. #                                                                        
  351. #                                                                        
  352. ###############################################################
  353.  
  354.  
  355.  
  356. proc dummyGPLT  {} {}
  357. proc GnuplotMenu {} {}
  358. hook::register mode::init GP_GraphButton GPLT
  359. hook::register mode::editPrefsFile GP_editCurrentModePrefs GPLT
  360. hook::register dialog::modifyModeFlags GP_modifyModeFlags GPLT        
  361. hook::register closeHook GP_CloseHook GPLT
  362. hook::register deactivateHook GP_DeactivateHook GPLT
  363. hook::register activateHook GP_ActivateHook GPLT
  364.  
  365. newPref v prefixString {# } GPLT
  366. newPref v wordBreak {[a-zA-Z0-9_]+} GPLT
  367. newPref f wordWrap {0} GPLT
  368. newPref v wordBreakPreface {[^a-zA-Z0-9_]} GPLT
  369. newPref v tabSize {3} GPLT
  370. newPref v prefixString {# } GPLT
  371. newPref f NevrSavHist {0} GPLT
  372. newPref f LiveHist {1} GPLT
  373. newPref f GraphButton {1} GPLT
  374. newPref f EventHandler {1} GPLT
  375. newPref v bracesColor blue GPLT
  376. newPref v bracesColor blue GPLT
  377. newPref v stringColor green GPLT
  378. newPref v commentColor red GPLT
  379. set gpTermCt 0
  380.  
  381. ###BGK
  382.    # (DO NOT ERASE Previous line)
  383.    # 
  384.    # NOTE:  Some coloring is controlled via 
  385.    #        Config:current mode:flags... menu
  386.    #
  387.  
  388.       ### BLUE words ###
  389.  
  390. set gpBlueWords { 
  391.     console  set show plot splot \\
  392.     autoscale      binary         boxxyerrorbars bugs
  393.     call           cd             clear          co-ordinates
  394.     comments             environment    exit
  395.     expressions    fit                       if
  396.     introduction   line-editing   load           pause
  397.     plot           print          pwd            quit
  398.     replot         reread         reset          save
  399.     seeking-assistance set            shell          show
  400.     splot          startup        style          substitution
  401.     test           update         userdefined    xyerrorbars
  402.     xerrorbars yerrorbars
  403.     "Copyright(C) 1986 - 1997" "Copyright(C) 1986 - 1998"
  404.  
  405.  
  406.  
  407.       ### RED words ###
  408.  
  409. set gpRedWords { 
  410.     topics available: Subtopics available  
  411.     server macintosh Press return for more: Help topic: 
  412.     Subtopic of {G N U P L O T} {(pre 3.6)}  3.5 3.6 
  413.     version for 68k ppc Power Macintosh patchlevel 
  414.     last modified first second
  415.  
  416.  
  417.      ### GREEN WORDS ###
  418.  
  419. set gpGreenWords {  
  420.     ranges         smooth         data-file      datafile          
  421.     parametric     locale         nosquare       errorbars
  422.     gnuplot        gnuplot>       term           square         
  423.     angles         arrow          autoscale      bar
  424.     bmargin        border         boxwidth       clabel
  425.     clip           cntrparam      contour        data
  426.     dgrid3d        dummy          encoding       format
  427.     function       grid           hidden3d       isosamples
  428.     key            keytitle       label          lmargin
  429.     logscale       mapping        margin         missing
  430.     multiplot      mx2tics        mxtics         my2tics
  431.     mytics         mztics         noarrow        noautoscale
  432.     noborder       noclabel       noclip         nodgrid3d
  433.     nokey          nolabel        nologscale     nomultiplot
  434.     nomx2tics      nomxtics       nomy2tics      nomytics
  435.     nomztics       noparametric   nopolar        nosurface
  436.     nox2dtics      nox2mtics      nox2tics       nox2zeroaxis
  437.     noxdtics       noxmtics       noxtics        noxzeroaxis
  438.     noy2dtics      noy2mtics      noy2tics       noy2zeroaxis
  439.     noydtics       noymtics       noytics        noyzeroaxis
  440.     nozdtics       nozeroaxis     nozmtics       noztics
  441.     offsets        origin         output         parametric
  442.     pointsize      polar          punctuation    rmargin
  443.     rrange         samples        size           specify
  444.     style          surface        syntax         terminal
  445.     tics           ticscale       ticslevel      time
  446.     timefmt        title          tmargin        trange
  447.     urange         view           vrange         x2dtics
  448.     x2label        x2mtics        x2range        x2tics
  449.     x2zeroaxis     xdata          xdtics         xlabel
  450.     xmtics         xrange         xtics          xzeroaxis
  451.     y2dtics        y2label        y2mtics        y2range
  452.     y2tics         y2zeroaxis     ydtics         ylabel
  453.     ymtics         yrange         ytics          yzeroaxis
  454.     zdtics         zero           zeroaxis       zlabel
  455.     zmtics         zrange         ztics
  456.     threaded  
  457.  
  458.  
  459.  
  460.     ### MAGENTA WORDS ###
  461.  
  462. set gpMageWords  { 
  463.     with lines using  points  multiplot> mac gx eps enh
  464.     info-gnuplot dartmouth edu bug-gnuplot { \@ }
  465.     Send comments and requests for help to
  466.     Send bugs, suggestions and mods to
  467.                    
  468.  
  469.  
  470.     ### CYAN WORDS ###
  471.  
  472. set gpCyanWords  {   post mac     macintosh      texdraw
  473.     aifm           atari          dumb           enhpost
  474.     epson          epson180       epson60        fig
  475.     gpic           hpljii         imagen         iris4d
  476.     latex          linux          mf             mif
  477.     mtos           nec-cp6        pbm            pcl5
  478.     postscript     pslatex        regis          starc
  479.     table          tandy60        tgif           uniplex
  480.     vdi            windows        unknown        pstricks
  481.     png            dxf            cgm            gif
  482.     emtex          pstex          eepic          tpic
  483.     pstricks       texdraw
  484.     Thomas Williams, Colin Kelley and many others 
  485.     Russell Lang, Dave Kotz, John Campbell. Gershon Elber
  486.  
  487. #
  488. # Color keywords for GPLT mode
  489. #
  490. regModeKeywords  -i "\}" -i "\{"  -i ">" -i "<" -i ")" -i "("  -i "/" -i "\\"  \
  491.     -i "\]" -i "\[" -i "\$" -i "\'" -i "\`" -i ">" -i "<" -i "^" -i "_" \
  492.     -I $GPLTmodeVars(bracesColor) \
  493.      -e {#} -c $GPLTmodeVars(commentColor) \
  494.     -s $GPLTmodeVars(stringColor)  \
  495.     -k red GPLT $gpRedWords
  496. regModeKeywords -a -k blue GPLT $gpBlueWords
  497. regModeKeywords -a -k green GPLT $gpGreenWords
  498. regModeKeywords -a -k magenta GPLT $gpMageWords
  499. regModeKeywords -a -k cyan GPLT $gpCyanWords
  500.  
  501. #  (DO NOT ERASE NEXT TWO LINES)
  502. ###EGK
  503.  
  504.  
  505.  
  506. #define saved globals
  507. ensureset GnuplotSig                  {GPLT}  
  508. ensureset gp_CREA                  {ALFA}  
  509. ensureset gp_TYPE                  {TEXT}  
  510. ensureset gp_CreatorList [list] 
  511. ensureset gp_TypeList [list] 
  512. ensureset gp_CreatorNames [list] 
  513. ensureset gp_GEOM [list]
  514. ensureset gp_HistGEOM [list ]
  515. ensureset headerSuffices {$GPLTmodeSuffixes}
  516. ensureset sourceSuffices {$GPLTmodeSuffixes}
  517.  
  518. if {[llength $gp_CreatorList] == 0 \
  519.  || [llength $gp_CreatorList] != [llength $gp_CreatorNames] \
  520.  || [llength $gp_CreatorList] != [llength $gp_TypeList]} {
  521.     set gp_CreatorList [list ALFA GPLT]
  522.     set gp_TypeList [list  TEXT TEXT]
  523.     set gp_CreatorNames [list  alpha gnuplot]
  524.     set gp_CREA {ALFA} 
  525.     set gp_TYPE {TEXT}
  526. }
  527.  
  528. #remove unused, previously saved globals
  529. if { [info exists GPLTmodeVars(FSIG)]}  { 
  530.     removeArrDef  GPLTmodeVars FSIG
  531.     unset GPLTmodeVars(FSIG)
  532. if { [info exists GPLTmodeVars(CREA)]}  { 
  533.     removeArrDef  GPLTmodeVars  CREA
  534.     unset GPLTmodeVars(CREA)
  535. if { [info exists GPLTmodeVars(TYPE)]}  { 
  536.     removeArrDef  GPLTmodeVars TYPE
  537.     unset GPLTmodeVars(TYPE)
  538.  
  539.  
  540. #############################################################################
  541. #
  542. #  global variables
  543. #
  544.  
  545. set gp_CommandHist [list]
  546. set gp_CommandNum 0
  547.  
  548. set gp_Prompt       "gnuplot> "
  549. set gp_MultiPrompt  "multiplot> "
  550. set gp_ContPrompt   "> "
  551. set gp_HelpPrompt   ": "
  552.  
  553. set gp_Prompts [list $gp_Prompt $gp_ContPrompt $gp_MultiPrompt ]
  554.  
  555. set gp_Console  "  gnuplot  "
  556. set gp_Hist     "  history  "
  557. set gp_Graph     "  graph  "
  558. set gp_sl [list]
  559.  
  560. #############################################################################
  561. #
  562. #  Bind some keys
  563. #
  564.  
  565. # Editing .gnu files
  566.  
  567. Bind '\r' <z>  GP_DoLine             "GPLT"
  568.  
  569. # Command Window
  570.  
  571. Bind '\r'      GP_CarriageReturn     "GPLT"
  572. Bind up        GP_PrevCommand        "GPLT"
  573. Bind down      GP_NextCommand        "GPLT"
  574. Bind '1'  <c>  GP_Console            "GPLT"
  575. Bind '2'  <c>  GP_Activate           "GPLT"
  576. Bind '3'  <c>  GP_DumpHistory        "GPLT"
  577. Bind 'f'  <sc>  GP_SaveAndExecute    "GPLT"
  578.  
  579.  
  580. # Repeat menu keys for command window
  581.  
  582. set gp_Launched {0}
  583.  
  584.  
  585.  
  586.  
  587. #############################################################################
  588. #
  589. #  gnuplot Menu stuff
  590. #
  591.  
  592. Menu -n    $GnuplotMenu -p GnuplotMenuItem    {                         
  593.     "/1console"                                                     
  594.     "/2graph"                                                     
  595.     "/3history"                                                     
  596.     "(-"    
  597.     "setWorkingFolder..."
  598.     "/P<UchoosePlotFile..."
  599.     "/L<Uload..."                                         
  600.     {Menu -n "saveSettings" -p GnuplotMenuItem  {
  601.     "/S<Uall"                  
  602.     "(-"
  603.     "setCmds" 
  604.     "functions"         
  605.     "variables"    
  606.     }}
  607.     "(-"                                                                                                                                  
  608.     "/N<UnewScriptWin"                                                 
  609.     "/F<UsaveAndExecute"                                         
  610.     "(-"    
  611.     {Menu  -s -m -n mathFunctions -p GnuplotMenuItem  {
  612.     {Menu  -s -m -n Trigonometric -p GnuplotMenuItem  {
  613.         "cos"
  614.         "tan"
  615.         "sin"
  616.     }}
  617.     {Menu  -s -m -n InverseTrig -p GnuplotMenuItem  {
  618.         "acos"
  619.         "asin"
  620.         "atan"         
  621.     }}
  622.     {Menu  -s -m -n Hyperbolic -p GnuplotMenuItem  {
  623.         "cosh"
  624.         "sinh"
  625.         "tanh"
  626.     }}
  627.     {Menu  -s -m -n special -p GnuplotMenuItem  {
  628.         "erf"            
  629.         "erfc"           
  630.         "inverf"                                  
  631.         "(-"
  632.         "gamma"                                       
  633.         "igamma"                        
  634.         "lgamma"                                      
  635.         "(-"
  636.         "ibeta"                                        
  637.     }}
  638.     {Menu  -s -m -n bessel -p GnuplotMenuItem  {
  639.         "besj0"
  640.         "besj1"
  641.         "besy0"
  642.         "besy1"         
  643.     }}
  644.     "(-"
  645.     "abs"  
  646.     "arg"               
  647.     "sgn"     
  648.     "sqrt"
  649.     "(-"
  650.     "exp"
  651.     "log"
  652.     "log10"                                  
  653.     "(-"
  654.     "ceil"           
  655.     "floor" 
  656.     "rand"
  657.     "norm"
  658.     "invnorm"
  659.     "(-"
  660.     "real" 
  661.     "imag"
  662.     "int"
  663.     }}
  664.     "(-"    
  665.     "/M<UdoSelection"                                             
  666.     "doLine"                                                         
  667.     "(-"
  668.     {Menu -n gnuplotOptions -p GnuplotMenuItem     {         
  669.     "setPointSize..."
  670.     "(-"    
  671.     "/H<UclearHistory"
  672.     "(-"    
  673.     {Menu -n setOutputCreator -p GnuplotMenuItem     {         
  674.         "select..."                                                 
  675.         "add..."                                                     
  676.         "delete..."                                                 
  677.     }}
  678.     "keywordColoring..."
  679.     }}                
  680.     "readme..."
  681.     "/2switchTo gnuplot"                                         
  682.     "/Q<Uquit gnuplot"                                             
  683. }                                                                         
  684.  
  685.  
  686.      # Attempt to overload the following command keys:
  687.      #
  688.        #  Command-1  :  Console
  689.         #  Command-2  :  Graph
  690.         #  Command-3  :  History
  691.                         
  692.                         
  693.                         
  694. proc    GnuplotMenuItem {menu item} {                                 
  695.     #global GnuplotMenu                                                     
  696.     switch $item {                                                 
  697.     "console"                GP_Console                     
  698.     "graph"                     GP_Activate                     
  699.     "gnuplot"                     GP_Activate                     
  700.     "history"                GP_DumpHistory                     
  701.     "newScriptWin"            GP_NewWindow         
  702.     "choosePlotFile..."        GP_ChoosePlotFile         
  703.     "saveAndExecute"         GP_SaveAndExecute         
  704.     "load..."                 GP_LoadScript             
  705.     "all"                     { GP_SaveSettings "" }             
  706.     "setCmds"                 { GP_SaveSettings "set" }             
  707.     "functions"                 { GP_SaveSettings "fun" }             
  708.     "variables"                 { GP_SaveSettings "var" }             
  709.     "doSelection"             GP_DoSelection             
  710.     "doLine"                    GP_DoLine                          
  711.     "switchTognuplot"        GP_Activate                 
  712.     "select..."                 GP_SelectCreator         
  713.     "add..."                     GP_AddCreator             
  714.     "delete..."                 GP_DeleteCreator         
  715.     "clearHistory"            GP_ClearHistory             
  716.     "quitgnuplot"             GP_Quit                     
  717.     "keywordColoring..."        editCurrentModePrefs
  718.     "setWorkingFolder..."   GP_SetCWD
  719.     "setPointSize..."       GP_SetPTSZ
  720.     "readme..."                 GP_Readme
  721.     "labels..."                { GP_Dialog "labl" }
  722.     "line styles..."            { GP_Dialog "line" }
  723.     "text format..."            { GP_Dialog "text" }
  724.     "labels..."                { GP_Dialog "labl" }
  725.     "gxText"                { GP_Dialog "gxtx" }
  726.     "offsets..."             { GP_Dialog "oset" }
  727.     default                    { insertText [string tolower $item ] () 
  728.     backwardChar    
  729.     }
  730. }                                                                 
  731. }                                                                         
  732.                                                                              
  733. #############################################################################
  734. #
  735. #  setup the event handler for Alpha/gnuplot interapp communication
  736. #  This file only works with Alpha 7.0 or newer so we assume
  737. #  eventHandling actually works.
  738. #
  739.  
  740. if { 1 } {
  741.     # Setup event Handler for STDOUT
  742.     eventHandler GPSE OUTP "GP_STDOUThandler"  
  743.     
  744.     # Setup event Handler for systems w/o ThreadManager
  745.     eventHandler GPSE ERRP "GP_STDERRhandler"
  746.     
  747.     # *ICInitializeCommand // This initializes the console.  
  748.     # Alpha eventhandler is needed.
  749.     # 'GPIC init'
  750.     eventHandler GPIC init "GP_ConsoleH"
  751.     # 
  752.     # *ICInitializePath // sends the working directory as 
  753.     # stored in preferences.
  754.     # Since you aren't displaying the working directory anywhere, 
  755.     # we can ignore
  756.     # this for now.
  757.     # 'GPIC path', contains a string in the direct object.
  758.     eventHandler GPIC path "GP_SendPath"
  759.     # 
  760.     # ICExecute // Tells the console to execute a gnuplot command.  
  761.     # I can't think
  762.     # of a reason for this one in Alpha.  The menuing system uses 
  763.     # this one in the current console.  We could define an event however.
  764.     # 
  765.     # 
  766.     # ICInsertCommand // Might be slick.  An example of what this 
  767.     # does is where
  768.     # functions get pasted into the command line.  Not absolutely necessary
  769.     # though.
  770.     # 'GPIC' 'inse'
  771.     eventHandler GPIC inse "GP_INSEhandler"
  772.     # 
  773.     # ICComeToFront  // The function will bring Alpha to the front.  
  774.     # No handler needed.
  775.     # 
  776.     # *ICBringGnuplotToFront // Handler needed.  When you get this one, bring
  777.     # gnuplot to the front.
  778.     # 'GPIC tofr'
  779.     eventHandler GPIC tofr "GP_ActivateH"
  780.     # 
  781.     # *ICHandleAEReply // You'll get this one if somebody used a 
  782.     # gnuplot menu to
  783.     # do something which necessitated a reply from gnuplot. The 
  784.     # gnuplot interface
  785.     # will pass the reply to you for display.
  786.     # 'GPIC repl', handle this one just like the reply from your exec event.
  787.     eventHandler GPIC repl "GP_STDERRhandler"
  788.     # 
  789.     # *ICMakeNewDocument  // It sounds like this one is working already.
  790.     # 'core crel'
  791.     eventHandler core crel "GP_NewWindowH"
  792.     # 
  793.     # *ICOpenDocument // Alpha already knows about this one.
  794.     # --already defined in alpha---
  795.     
  796.     # The event 'GPIC' 'cbye' is now sent whenever gnuplot quits.
  797.     # This will let you close the console if somebody quits 
  798.     # gnuplot some other way. You could
  799.     # use this to eliminate your 'quit' trapping if you want.
  800.     eventHandler GPIC cbye "GP_CloseH"
  801.     # I also defined a new event: 'GPIC' 'EXEC'.  All you need to 
  802.     # do is take the
  803.     # data and send it back to gnuplot as a 'GPSE' 'exec' event. 
  804.     # This is a kludge
  805.     # to make the commands in the gnuplot app menus work. 
  806.     # It will eventually go away.
  807.     eventHandler GPIC EXEC "GP_Kludge"
  808.     
  809.     proc GP_Kludge {it} {
  810.     set outit  [GP_filtercurlyq $it]
  811.     GP_STDERR $outit
  812.     if { $it == "Unable to find process" } GP_Quit
  813.     return 0
  814.     }    
  815.     
  816.     proc GP_STDERRhandler {it} {
  817.     global gp_cwd
  818.     set outit  [GP_filtercurlyq $it]
  819.     GP_ExtractPath $it
  820.     GP_Results $outit
  821.     if { $it == "Unable to find process" } GP_Quit
  822.     return 0
  823.     }
  824.     
  825.     proc GP_STDOUThandler {it} {
  826.     global gp_cwd gp_Out gpTermCt
  827.     global gp_Console gp_Graph  
  828.     global GPLTmodeVars gp_Launched gp_GEOM
  829.     global gp_Prompt  gp_cwd GnuplotMenu 
  830.     
  831.     set outit  [GP_filtercurlyq $it]
  832.     GP_ExtractPath $it
  833.     set wins [winNames]    
  834.     
  835.     set itLen [ string length "$it" ]
  836.     set termID [ string range "$outit" 0 20 ]
  837.     set termType [ string range "$it" [expr $itLen -25] [expr $itLen -1] ] 
  838.     
  839.     if { [ string first "Sorry," "$termID" ] == 0 } {
  840.         insertText -w  $gp_Console "\n$outit"
  841.         return
  842.         
  843.     } elseif { [ string first "% GNUPLOT: LaTeX" "$termID" ] == 0 } {           
  844.         incr gpTermCt 1
  845.         #            set gp_Out [getline "Enter name of output console?" "* TeX output $gpTermCt *" ]
  846.         set gp_Out "* TeX output $gpTermCt *"
  847.         set theMode "TeX"
  848.         
  849.     } elseif { [string first "%!PS-Adobe" "$termID" ] == 0 } {
  850.         incr gpTermCt 1
  851.         #            set gp_Out [getline "Enter name of output console?" "* PS output $gpTermCt *" ]
  852.         set gp_Out "* PS output $gpTermCt *"
  853.         set theMode "PS"
  854.         
  855.     } elseif { [string first "<MIFFile 3.00>" "$termID" ] == 0 } {
  856.         incr gpTermCt 1
  857.         #            set gp_Out [getline "Enter name of output console?" "* MIF output $gpTermCt *" ]
  858.         set gp_Out "* MIF output $gpTermCt *"
  859.         set theMode "PS"
  860.         
  861.     } elseif { [string first "% GNUPLOT: dxf" "$termID" ] >= 0 } {
  862.         incr gpTermCt 1
  863.         #            set gp_Out [getline "Enter name of output console?" "* misc output $gpTermCt *" ]
  864.         set gp_Out "* misc output $gpTermCt *"
  865.         set theMode "TEXT"
  866.         
  867.     } elseif { [string first "if unknown cmbase" "$termID" ] == 0 } {
  868.         incr gpTermCt 1
  869.         #            set gp_Out [getline "Enter name of output console?" "* MF output $gpTermCt *" ]
  870.         set gp_Out "* MF output $gpTermCt *"
  871.         set theMode "TeX"
  872.         
  873.     } elseif { [string first "#Curve" "$termID" ] == 0 } {
  874.         incr gpTermCt 1
  875.         #            set gp_Out [getline "Enter name of output console?" "* misc output $gpTermCt *" ]
  876.         set gp_Out"* misc output $gpTermCt *"
  877.         set theMode "TEXT"
  878.         
  879.     } elseif { [ string index "$termID" 0  ] == " " && [ string first "TERM:“dumb”" "$termType" ] > 0 } {
  880.         set ns "\n"
  881.         append ns $outit
  882.         set outit "$ns"
  883.         set gp_Out $gp_Console
  884.         #set theMode "TEXT"
  885.         
  886.     } elseif { ![info exists gp_Out ] || [lsearch $wins $gp_Out ] < 0 } {
  887.         incr gpTermCt 1
  888.         #            set gp_Out [getline "Enter name of output console?" "* misc output $gpTermCt *" ]
  889.         set gp_Out "* misc output $gpTermCt *"
  890.         set theMode "TEXT"
  891.     }
  892.     
  893.     if { $gp_Out == "" } {set gp_Out $gp_Console }
  894.     
  895.     if {  [lsearch $wins $gp_Out ]  < 0 } { 
  896.         new  -n $gp_Out -m $theMode
  897.         #set wins [winNames]
  898.         set gp_Out [lindex [winNames] 0]
  899.     } else {
  900.         #catch [ bringToFront $gp_Out ] ans
  901.         #if { ![info exists ans] } { return }
  902.     }
  903.     
  904.     insertText -w $gp_Out $outit
  905.     GP_Console
  906.     if { $it == "Unable to find process" } GP_Quit
  907.     return 0
  908.     }
  909.     
  910.     proc GP_INSEhandler {it} {
  911.     global gp_Console gp_TYPE gp_CREA GnuplotSig
  912.     set res [GP_filtercurlyq $it]
  913.     set wins [winNames]
  914.     if { ( "$res" != "\n" ) & ( "$res" != "" ) & ( "$res" != "\r" ) } {
  915.         if { [ lsearch $wins $gp_Console  ] >= 0} {
  916.         bringToFront $gp_Console    
  917.         }        
  918.     }        
  919.     
  920.     goto [maxPos]        
  921.     insertText -w $gp_Console $res
  922.     
  923.     
  924.     set paren  [string first "()" $res ]
  925.     
  926.     if { $paren >= 1 } {
  927.         goto [expr [maxPos] - $paren + 2]
  928.     }
  929.     
  930.     if { "$res" == "\r" }  {
  931.         GP_SendCommand "" 3600
  932.     } elseif { "$res" == "\n" }  {
  933.         GP_SendCommand "" 3600 
  934.     } elseif { "$res" == "" }  {
  935.         GP_SendCommand "" 3600
  936.     } else {
  937.         return 0
  938.     }
  939.     
  940.           
  941.     }
  942.     
  943.     
  944.     proc GP_SendPath { dummyVar } {
  945.     global gp_cwd
  946.     # display current path on status bar
  947.     set gp_cwd [ GP_filtercurlyq $dummyVar ]
  948.     message "Current gnuplot Path ==> $gp_cwd"
  949.     }
  950.     
  951.     proc GP_ConsoleH { dummyVar } { 
  952.     GP_Console   
  953.     # this is a dummy routine
  954.     }  
  955.     
  956.     proc GP_NewWindowH { dummyVar } { 
  957.     switchTo 'ALFA'
  958.     GP_NewWindow   
  959.     # this is a dummy routine
  960.     }  
  961.     
  962.     proc GP_ActivateH { dummyVar } { 
  963.     GP_Activate   
  964.     # this is a dummy routine
  965.     }  
  966.  
  967.     proc GP_CloseH { dummyVar } { 
  968.     GP_Quit   
  969.     # this is a dummy routine
  970.     }  
  971.  
  972. } else { 
  973.     set GPLTmodeVars(EventHandler) 0 
  974. }
  975.  
  976.  
  977. #############################################################################
  978. #
  979. #  Find and launch gnuplot
  980. #
  981. #
  982.  
  983. proc GP_Check {} {
  984.     global GnuplotMenu gp_Launched GPLTmodeVars
  985.     
  986.     # Check if gnuplot app is running.  If not, open the app named in 
  987.     # $ (if defined) or have the user select an app via a
  988.     # standard file dialog.  Leave the gnuplot app in the background.
  989.     
  990.     if {![catch {app::launchAnyOfThese {GPSE GPLT} GnuplotSig}]} {
  991.     set gp_Launched 1
  992.     enableMenuItem $GnuplotMenu "quit gnuplot" on
  993.     enableMenuItem $GnuplotMenu "graph" on
  994.     enableMenuItem $GnuplotMenu "history" on
  995.     enableMenuItem $GnuplotMenu "saveSettings" on  
  996.     enableMenuItem gnuplotOptions "setPointSize..." on  
  997.     enableMenuItem $GnuplotMenu "setWorkingFolder..." on
  998.     enableMenuItem $GnuplotMenu "choosePlotFile..."     on
  999.     return 0
  1000.     } else {
  1001.     return -1
  1002.     }
  1003. }
  1004.  
  1005. #############################################################################
  1006. #
  1007. #  Goto command window
  1008. #
  1009. proc GP_Console {  } {
  1010.     global gp_Console  GPLTmodeVars 
  1011.     global gp_Launched gp_Prompt 
  1012.     
  1013.     # Check if gnuplot app is running.  If not, open the app named in 
  1014.     # $ (if defined) or have the user select an app via a
  1015.     # standard file dialog.  Leave the gnuplot app in the background.
  1016.     
  1017.     set wins [winNames]
  1018.     if { [lsearch $wins $gp_Console ]  >= 0} {
  1019.     bringToFront $gp_Console
  1020.     goto [maxPos]
  1021.     } else   {
  1022.     eventHandler GPIC cbye "GP_CloseH"
  1023.     GP_NewConsole
  1024.     }  
  1025. }
  1026.  
  1027.  
  1028. #############################################################################
  1029. #
  1030. #  Create  command window
  1031. #
  1032. proc GP_NewConsole { } {
  1033.     global  gp_Console gp_Graph  gp_Path
  1034.     global  GPLTmodeVars gp_Launched gp_GEOM GP_GraphMenu
  1035.     global gp_Prompt  gp_cwd GnuplotMenu  gp_home gp_scriptItems
  1036.     
  1037.     if {[llength $gp_GEOM] != "4" } {            
  1038.     GP_Readme
  1039.     new -n $gp_Console -m GPLT
  1040.     set gp_GEOM [ getGeometry $gp_Console ] 
  1041.     }   
  1042.     set wd [lindex $gp_GEOM 2]
  1043.     set ht [lindex $gp_GEOM 3]
  1044.     set top [lindex $gp_GEOM 1]
  1045.     set left [lindex $gp_GEOM 0]
  1046.     set gY [expr $top - 15]
  1047.     set gX [expr $left + $wd + 5]
  1048.     set gW [expr 72 ]
  1049.     set gH [expr 50 ]
  1050.     
  1051.     set wins [winNames]    
  1052.     if {  [lsearch $wins $gp_Console ]  < 0 } { 
  1053.     new -g $left $top $wd $ht -n $gp_Console -m GPLT
  1054.     }
  1055.     catch { setWinInfo -w $gp_Console shell 1 } jjj
  1056.     GP_GraphButton
  1057.     if { $GPLTmodeVars(LiveHist) } GP_DumpHistory
  1058.     insertText -w $gp_Console  "\nWelcome to Alpha's gnuplot 3.6 shell.\n" 
  1059.     GP_Check
  1060.     bringToFront $gp_Console
  1061.     
  1062.     set res [ GP_STDERR ""  3600 ]
  1063.     insertText -w $gp_Console "$res"
  1064.     
  1065.     # The following is a huge kludge...to deal with accidentally
  1066.     # closing the gnuplot window
  1067.     if    { $res == "" }    {
  1068.     GP_Results "gnuplot> "
  1069.     }
  1070.     # end kludge
  1071.     
  1072.     # Now setup the CLIE
  1073.     if {[string first "Using threaded console."  $res ] != {-1} \
  1074.       | [string first "ppc" [string tolower $res ] ] != {-1}  } { 
  1075.     set ress [GP_STDERR "" 3600 ]
  1076.     }
  1077.     
  1078.     set gp_home "$gp_cwd"
  1079.     append gp_home "Scripts:*" 
  1080.     
  1081.     
  1082.     set cdir [pwd]
  1083.     set gp_Path "$gp_home"
  1084.     
  1085.     GP_RebuildScriptMenu
  1086.     cd "$cdir"
  1087.     
  1088.     set gp_home [string range "$gp_home" 0 [expr [string length "$gp_home" ] -2 ] ]
  1089.     message "Current gnuplot Path ==> $gp_cwd"
  1090.     
  1091. }
  1092.  
  1093.  
  1094. ################################################################################
  1095. #
  1096. #  Rebuild the script menu 
  1097. #      
  1098. #
  1099.  
  1100. proc GP_RebuildScriptMenu {} {
  1101.     global gp_cwd GP_GraphMenu gp_scriptItems gp_openItems gp_Path
  1102.  
  1103.     set gp_scriptItems [list]
  1104.     set gp_openItems [list]
  1105.     set gp_home "$gp_Path"
  1106.  
  1107.     set gp_sl [ GP_ScriptList "$gp_home" "Scripts" ]
  1108.     set gp_sm [concat Menu -m -n "Scripts" -p GP_ScriptMenuItems [list "$gp_sl"]  ]
  1109.     
  1110.     # kill the current floating menu (if any)
  1111.     GP_KillGraphButton
  1112.     
  1113.     Menu  -n "$GP_GraphMenu" -p GnuplotMenuItem [list \
  1114.       "gnuplot" \
  1115.       "(-" \
  1116.       {Menu -m -s -n "Settings" -p GnuplotMenuItem  {\
  1117.       "line styles...&" \
  1118.       "text format...&" \
  1119.       "labels...&" \
  1120.       "offsets...&" \
  1121.     }}\
  1122.     "(-" \
  1123.     "$gp_sm" \
  1124.     ]
  1125.      
  1126.     GP_GraphButton
  1127. }
  1128.    
  1129.     
  1130. ################################################################################
  1131. #
  1132. #  Generate a new script window 
  1133. #      
  1134. #
  1135.  
  1136. proc GP_NewWindow {} {
  1137.     set wname "Untitled.gp"
  1138.     new -n $wname -m GPLT
  1139.     GP_uFD
  1140.     insertText "#\r"
  1141.     setWinInfo -w $wname dirty 0
  1142. }
  1143.  
  1144.  
  1145.  
  1146.  
  1147. #############################################################################
  1148. #
  1149. #  Tell gnuplot to quit
  1150. #
  1151.  
  1152. proc GP_Quit {} {
  1153.     global gp_Console  
  1154.     
  1155.     switchTo 'ALFA'
  1156.     set wins [winNames]
  1157.     if { [set winThere [lsearch $wins $gp_Console ] ] >= 0} {
  1158.     set name [lindex $wins $winThere]
  1159.     bringToFront $name
  1160.     killWindow
  1161.     } 
  1162.     
  1163. }
  1164.  
  1165.  
  1166. #############################################################################
  1167. #
  1168. #  Switch to gnuplot
  1169. #
  1170.  
  1171. proc GP_Activate {  } {
  1172.     global   GnuplotSig 
  1173.     
  1174.     if { ![GP_Check] } { 
  1175.     switchTo \'$GnuplotSig\' 
  1176.     }    
  1177. }
  1178.  
  1179.  
  1180. #############################################################################
  1181. #
  1182. #  Carriage return for command window
  1183. #
  1184.  
  1185. proc GP_CarriageReturn {} {
  1186.     global gp_CommandHist gp_CommandNum  gp_Console gp_Hist gp_Graph 
  1187.     
  1188.     #enter only if cr in console window...
  1189.     set wins [winNames]
  1190.     if { [lsearch $wins $gp_Console ]  == 0  } {
  1191.     setWinInfo -w $gp_Console dirty 0            
  1192.     set pos [getPos]
  1193.     
  1194.     # I look for > and : instead of the proper prompts... Hmmm...
  1195.     # if -1 then we are not on an input line...
  1196.     # or we could be waiting for a pause...
  1197.     # which should be on the last line...        
  1198.     set ind [string first ">" [getText [lineStart $pos] $pos] ]
  1199.     if {$ind < 0} {
  1200.         set ind [string first ":" [getText [lineStart $pos] $pos] ]
  1201.         if {$ind < 0} {
  1202.         endOfBuffer
  1203.         # just send a cr to the server
  1204.         insertText "\r"
  1205.         GP_SendCommand [getText [lineStart $pos] $pos] 400
  1206.         return 
  1207.         }
  1208.     }
  1209.     set lStart [pos::math [lineStart $pos]+ [expr $ind+2]]
  1210.     endOfLine
  1211.     set lEnd  [getPos]  
  1212.     set scriptName [getText $lStart $lEnd]
  1213.     insertText "\r"
  1214.     # if not on last line, then replace text on last line...
  1215.     GP_SendCommand "$scriptName"  102
  1216.     } elseif {[lsearch $wins $gp_Hist ] == 0} {
  1217.     # execute the current command in the history window...
  1218.     GP_HistgotoMatch
  1219.     } else {
  1220.     insertText "\r"
  1221.     }
  1222. }
  1223.  
  1224.  
  1225.  
  1226. #############################################################################
  1227. #
  1228. #  Filter curlyq's out of sting...We may need to be smarter 
  1229. #    about this later
  1230. #
  1231. proc GP_filtercurlyq { it } {
  1232.     
  1233.     set from [string first "“" $it]
  1234.     set to [string first "”" $it]
  1235.     set ans [string range $it [expr $from + 1] [expr $to - 1] ]
  1236.     if { ![expr [string length $ans] -1 ] } { 
  1237.     regexp -nocase {[a-z0-9]} $ans nans
  1238.     if {[info exists nans]} {
  1239.         set ans $nans
  1240.     } else {
  1241.         set ans ""
  1242.     }
  1243.     
  1244.     
  1245.     }
  1246.     
  1247.     return $ans
  1248. }
  1249.  
  1250. #############################################################################
  1251. #
  1252. #  Extract current gnuplot path from event reply
  1253. #
  1254.  
  1255. proc GP_ExtractPath { ans } {
  1256.     global gp_cwd 
  1257.     
  1258.     # We need to be tricky since I'm not sure if Dave is sending the
  1259.     # path in an alis, or as a string
  1260.     #    regexp {“(.*)(”.*“)(.*)”} "$ans" dummy spec1 spec2 spec3   
  1261.     
  1262.     set frst [ string first "PSTR:" "$ans" ]
  1263.     set lst [ string first "TERM:" "$ans" ]
  1264.     
  1265.     if { ($frst > 0) } {
  1266.     if { $lst <= 0 } { set lst [string length $ans ] }
  1267.     set ans [string range "$ans" $frst $lst ]
  1268.     regexp {“(.*)”} "$ans" dummy  spec3   spec1 
  1269.     if {[info exists spec3]} {
  1270.         set ngp_cwd $spec3
  1271.         if {$ngp_cwd != "" } {
  1272.         set gp_cwd "$ngp_cwd"
  1273.         return 0
  1274.         }         
  1275.     }
  1276.     }
  1277.     
  1278.     regexp {«(.*)»} "$ans" dummy spec
  1279.     if {[info exists spec]} {
  1280.     set ngp_cwd [specToPathName $spec]
  1281.     if {$ngp_cwd != "" } {
  1282.         set gp_cwd "$ngp_cwd"
  1283.         return 0
  1284.     }         
  1285.     }
  1286. }    
  1287.   
  1288.     
  1289.  
  1290. #############################################################################
  1291. #
  1292. #  Send a command to gnuplot and return stderr!
  1293. #
  1294.  
  1295. proc GP_STDERR { mycommand tmout } {
  1296.     global  gp_cwd  GPLTmodeVars GnuplotSig gp_TYPE gp_CREA
  1297.     
  1298.     if { ! $GPLTmodeVars(EventHandler) } {
  1299.     catch { AEBuild -t $tmout -r \'$GnuplotSig\' GPSE  "exec" ---- \
  1300.       [curlyq $mycommand] {CREA:} "$gp_CREA" \
  1301.       {TYPE:} "$gp_TYPE" } ans 
  1302.     } else {
  1303.     catch { AEBuild -t $tmout -r \'$GnuplotSig\' GPSE  "exec" ---- \
  1304.       [curlyq $mycommand] {CLIE:} "ALFA" {CREA:} "$gp_CREA" \
  1305.       {TYPE:} "$gp_TYPE" } ans 
  1306.     } 
  1307.     if { $ans == "Unable to find process"  }  GP_Quit        
  1308.     GP_ExtractPath $ans
  1309.     return [GP_filtercurlyq $ans]
  1310. }
  1311.  
  1312.  
  1313. #############################################################################
  1314. #
  1315. #  Send a command to gnuplot  
  1316. #
  1317.  
  1318. proc GP_SendCommand { mycommand tmout} {
  1319.     global GPLTmodeVars GnuplotMenu  gp_CommandHist gp_Rsp  gp_CommandNum  
  1320.     global gp_Prompts gp_Launched 
  1321.     
  1322.     watchCursor
  1323.     #    GP_Console
  1324.     
  1325.     set tmout 300
  1326.     #display command on the last line of the console if its not already there
  1327.     GP_DispCommand "$mycommand"
  1328.     if { [string trim $mycommand '\r'] != {} } {
  1329.     GP_AddToHist $mycommand
  1330.     }
  1331.     
  1332.     # send gnuplot a command
  1333.     # display the stderr results on the screen
  1334.     # The eventHandler above will display the stdout results first
  1335.     set stderr [GP_STDERR "$mycommand\r"  $tmout ]
  1336.     
  1337.     # Null stderr can mean two things.  
  1338.     #   (1) a pause 
  1339.     #   (2) if no thread manager available, it could mean go back 
  1340.     #       and retrieve the stderr which will help 68k systems 
  1341.     #       work since eventHandler is broken in 6.01
  1342.     
  1343.     # This can probably be cleaned up with a little effort
  1344.     # What I'm doing in the next line is taking care of the 
  1345.     # non-threaded macs...
  1346.     # which always return "".  Its harmless otherwise.
  1347.     #if {$stderr == ""  & $mycommand != "" } { set stderr [GP_STDERR "" $tmout ] }
  1348.     #if { $GPLTmodeVars(EventHandler) == "0" &  $stderr == "" } { set stderr "gnuplot> " }
  1349.     if { $stderr != "" } { 
  1350.     GP_Results     "$stderr" 
  1351.     } else {
  1352.     #GP_Results ""
  1353.     }
  1354.     
  1355.     blink [getPos]
  1356. }
  1357.   
  1358.  
  1359. #############################################################################
  1360. #
  1361. #  Save current window and execute it in GNUPLOT, just like GNUPLOT 
  1362. #  command ;)
  1363. #
  1364.  
  1365. proc GP_SaveAndExecute {} {
  1366.     
  1367.     if {[winDirty]} {save}
  1368.     
  1369.     # Get the path of the current window and it's name
  1370.     
  1371.     # Set the working directory to the current window's
  1372.     # current dir.
  1373.     set GPLTFilePath "cd \'\:"
  1374.     set GPLTFile [lindex [winNames -f] 0]
  1375.     set GPLTFP [file dirname $GPLTFile]
  1376.     append  GPLTFilePath  $GPLTFP ":\'"
  1377.     
  1378.     # use unix style file paths 
  1379.     regsub -all ":" $GPLTFilePath {/} GPLTFilePath
  1380.     
  1381.     # get the load command ready...
  1382.     set scriptName  "load \'"
  1383.     append scriptName [file tail $GPLTFile] "\'"
  1384.     
  1385.     # Change current working directory to window's
  1386.     GP_SendCommand $GPLTFilePath 600
  1387.     
  1388.     # Do the script
  1389.     GP_SendCommand $scriptName 700
  1390. }
  1391.   
  1392.  
  1393. #############################################################################
  1394. #
  1395. #  Write results to command window  
  1396.  
  1397. proc GP_Results { res } {
  1398.     global gp_Console gp_cwd
  1399.     insertText -w "$gp_Console"  "\n" $res
  1400.     setWinInfo -w "$gp_Console" dirty 0
  1401.     message "Current gnuplot Path ==> $gp_cwd"
  1402. }
  1403.  
  1404.  
  1405. #############################################################################
  1406. #
  1407. #  Display or rewrite "command" to command window  
  1408.  
  1409. proc GP_DispCommand {command} {
  1410.     global   gp_Prompts gp_cwd 
  1411.     
  1412.     # This is ugly and probably not very efficient.
  1413.     
  1414.     set lst [maxPos]
  1415.     set boll [lineStart $lst]
  1416.     set curr [getPos]
  1417.     
  1418.     if {[pos::compare $curr >= $boll]} {       
  1419.     set bol [lineStart $curr]
  1420.     set eol [nextLineStart $curr] 
  1421.     set text [getText $bol $eol]
  1422.     set ltext [getText $boll $lst]
  1423.     foreach gp $gp_Prompts {
  1424.         set c1 [string first $gp $ltext]
  1425.         set c2 [expr $lst - $boll]
  1426.         set c3 [string length $gp]
  1427.         set c4 [expr $lst - $curr] 
  1428.         set c5 [string length $command]
  1429.         if { $c1 == 0 & [expr $c2 >= $c3 | $c4 >= $c5 ] } {
  1430.         if {[string first $command $text] == -1} {
  1431.             set a [expr $boll + [string length $gp] ]
  1432.             set b [string trim $command "\r"]
  1433.             replaceText $lst  $a $b
  1434.         } 
  1435.         } 
  1436.     }    
  1437.     }
  1438. }
  1439.  
  1440.  
  1441.  
  1442.  
  1443. #############################################################################
  1444. #
  1445. #  Send line to GNUPLOT
  1446. #
  1447.  
  1448. proc GP_DoLine {} {
  1449.     
  1450.     beginningOfLine
  1451.     set bol [getPos]
  1452.     endOfLine
  1453.     set eol [getPos]
  1454.     
  1455.     set scriptName [getText $bol $eol]
  1456.     GP_SendCommand $scriptName     800
  1457. }
  1458.  
  1459.  
  1460. #############################################################################
  1461. #
  1462. #  Send selection to GNUPLOT
  1463. #
  1464.  
  1465. proc GP_DoSelection {} {
  1466.     # Break lines into separate commands.
  1467.     foreach sN [split [getSelect] "\r"] { 
  1468.     GP_SendCommand $sN 900
  1469.     }
  1470.     
  1471. }
  1472.  
  1473.  
  1474.  
  1475.  
  1476. #############################################################################
  1477. #
  1478. #  Command History 
  1479. #
  1480.  
  1481. proc GP_PrevCommand {} {
  1482.     global  gp_CommandHist gp_CommandNum gp_Hist gp_Prompt gp_MultiPrompt 
  1483.     global  gp_ContPrompt gp_Console gp_Hist
  1484.     
  1485.     #enter only if cr in console window...
  1486.     set wins [winNames]
  1487.     if { [lsearch $wins "$gp_Console" ] == 0} {
  1488.     
  1489.     set text [getText [lineStart [getPos] ] [nextLineStart [getPos] ] ]
  1490.     if {[set ind [string first $gp_Prompt $text] ] == 0} {
  1491.         goto [expr [lineStart [getPos] ] + $ind + [string length $gp_Prompt] ]
  1492.     } elseif {[set ind [string first $gp_MultiPrompt $text] ] == 0} {
  1493.         goto [expr [lineStart [getPos] ] + $ind + 
  1494.         [string length $gp_Multiprompt] ]
  1495.     } elseif {[set ind [string first $gp_ContPrompt $text] ] == 0} {
  1496.         goto [expr [lineStart [getPos] ] + $ind + [string length $gp_Contprompt] ]
  1497.     } elseif { return }
  1498.     
  1499.     incr gp_CommandNum -1
  1500.     if {$gp_CommandNum < 0} {
  1501.         incr gp_CommandNum
  1502.         endOfLine
  1503.         return
  1504.     } 
  1505.     set text [lindex $gp_CommandHist $gp_CommandNum]
  1506.     set to [nextLineStart [getPos] ]
  1507.     if {[lookAt [expr $to-1] ] == "\r"} {incr to -1}
  1508.     
  1509.     replaceText [getPos] $to $text
  1510.     } elseif { [lsearch $wins $gp_Hist ]  == 0} {
  1511.     
  1512.     set limit [nextLineStart [nextLineStart 0] ]
  1513.     if {[getPos] > $limit} {
  1514.         set limit [pos::math [getPos] - 1]
  1515.     }
  1516.     select [lineStart $limit] [nextLineStart $limit]
  1517.     } else {
  1518.     previousLine
  1519.     }
  1520.     
  1521. }
  1522.  
  1523. proc GP_NextCommand {} {
  1524.     global  gp_CommandHist gp_CommandNum gp_Prompt gp_MultiPrompt 
  1525.     global gp_ContPrompt gp_Console gp_Hist
  1526.     
  1527.     #enter only if cr in console window...
  1528.     set wins [winNames]
  1529.     if { [lsearch $wins "$gp_Console"  ]  == 0} {
  1530.     
  1531.     set text [getText [lineStart [getPos] ] [nextLineStart [getPos] ]]
  1532.     if {[set ind [string first $gp_Prompt $text] ] == 0} {
  1533.         goto [expr [lineStart [getPos] ] + $ind + 9]
  1534.     } elseif {[set ind [string first $gp_MultiPrompt $text] ] == 0} {
  1535.         goto [expr [lineStart [getPos] ] + $ind + 11]
  1536.     } elseif {[set ind [string first $gp_ContPrompt $text] ] == 0} {
  1537.         goto [expr [lineStart [getPos] ] + $ind + 3]
  1538.     } else  { 
  1539.         endOfBuffer
  1540.         return 
  1541.     }
  1542.     
  1543.     incr gp_CommandNum
  1544.     if {$gp_CommandNum > [llength $gp_CommandHist]} {
  1545.         incr gp_CommandNum -1
  1546.         return
  1547.     }
  1548.     set text [lindex $gp_CommandHist $gp_CommandNum]
  1549.     set to [nextLineStart [getPos] ]
  1550.     if {[lookAt [expr $to-1] ] == "\r"} {incr to -1}
  1551.     replaceText [getPos] $to $text
  1552.     } elseif { [lsearch $wins $gp_Hist  ]  == 0} {
  1553.     set pos [getPos]
  1554.     if {$pos < [nextLineStart 0]} {
  1555.         set pos [nextLineStart 0]
  1556.     }
  1557.     if {[nextLineStart $pos] != [maxPos]} {
  1558.         select [nextLineStart $pos] [nextLineStart [nextLineStart $pos] ]
  1559.     }
  1560.     } else {
  1561.     # mv cusor down...
  1562.     nextLine
  1563.     }    
  1564. }
  1565.  
  1566.  
  1567.  
  1568. #############################################################################
  1569. #
  1570. #  Edit current window in GNUPLOT
  1571. #
  1572.  
  1573. proc GP_EditFile {} {
  1574.     global GnuplotSig 
  1575.     
  1576.     if { ![GP_Check] } {
  1577.     set thisWin  [lindex [winNames] 0]
  1578.     if {[winDirty]} {
  1579.         if {[askyesno "Save '$thisWin'?"] == "yes"} {
  1580.         save
  1581.         } else { 
  1582.         return 
  1583.         }     
  1584.     }
  1585.     set thisWin  [lindex [winNames -f ] 0]
  1586.     killWindow
  1587.     if {![catch {sendOpenEvent -n \'$GnuplotSig\' $thisWin }]} {
  1588.         switchTo \'$GnuplotSig\'     
  1589.     }
  1590.     }
  1591. }
  1592.  
  1593.  
  1594. #############################################################################
  1595. #
  1596. #  change behavior of modifyModeFlags
  1597. #
  1598.  
  1599.     
  1600. proc GP_modifyModeFlags {{title ""}} {
  1601.     global mode GPLTmodeVars gp_modflag PREFS gp_HistGEOM gp_GEOM
  1602.     global GnuplotMenu  gp_Graph gp_Console  gp_Hist gp_floatmenu
  1603.     
  1604.     set wins [winNames]
  1605.     if { [lsearch $wins "$gp_Console" ]  >= 0}  {
  1606.     set gp_GEOM [ getGeometry "$gp_Console" ]
  1607.     }
  1608.     
  1609.     if { [lsearch $wins $gp_Hist] >= 0 } {
  1610.     set gp_HistGEOM [ getGeometry "$gp_Hist" ]
  1611.     }
  1612.     
  1613.     set gp_modflag 1
  1614.     
  1615.     if { $GPLTmodeVars(LiveHist) } { 
  1616.     set wins [winNames]
  1617.     if { [lsearch $wins "$gp_Console"  ]  >= 0} {
  1618.         GP_DumpHistory
  1619.     } 
  1620.     } else {
  1621.     set wins [winNames]
  1622.     if {[lsearch $wins $gp_Hist  ]  >= 0} {
  1623.         bringToFront $gp_Hist
  1624.         killWindow 
  1625.     } 
  1626.     }
  1627.     if { $GPLTmodeVars(EventHandler) } { 
  1628.     } else {
  1629.     set jj1 "The event handler is broken in Alpha (68k).
  1630.     set jj2 "You may need to disable event handling until it is fixed."
  1631.     alertnote $jj1 $jj2
  1632.     }
  1633.     if { $GPLTmodeVars(GraphButton) } { 
  1634.     GP_GraphButton
  1635.     } else {
  1636.     GP_KillGraphButton
  1637.     }
  1638.     # This file is sourced when appropriate by Alpha, 
  1639.     # it should not happen here.
  1640.     #catch {  source $PREFS:GPLTPrefs.tcl } jjj
  1641.     catch {    bringToFront "$gp_Console" } jjj
  1642. }
  1643.  
  1644. #############################################################################
  1645. #
  1646. #  closeHook procedure so that gnuplot is quit 
  1647. #  whenever the user closes the console window.  Also ask about 
  1648. #  saving the history list when the console is closed.
  1649. #
  1650. #
  1651.     
  1652. proc GP_CloseHook    {name} {
  1653.     global GnuplotMenu GPLTmodeVars PREFS modifiedArrayElements
  1654.     global gp_CreatorList gp_TypeList gp_Console gp_Graph gp_Hist 
  1655.     global gp_CreatorNames gp_CommandNum gp_Launched GnuplotSig modifiedVars
  1656.     global gp_GEOM gp_HistGEOM modifiedVars
  1657.     
  1658.     if { [string first "$gp_Console" $name] == 0    } {
  1659.     
  1660.     if    {$gp_CommandNum != 0 && ! $GPLTmodeVars(NevrSavHist) } {
  1661.         GP_DumpHistory
  1662.         set ans [askyesno -c "Save    gnuplot command History?" ]
  1663.     } else {    set ans "yes" }
  1664.     
  1665.     GP_OffSet
  1666.     switch -exact [string tolower $ans] {
  1667.         "cancel"   { GP_Console; return $result }
  1668.         "no"       { GP_ClearHistory }
  1669.         "yes"       {     
  1670.         catch { setWinInfo -w $gp_Hist read-only 0 } jj                                        
  1671.         catch { setWinInfo -w $gp_Hist dirty 1 } jj
  1672.         catch { bringToFront $gp_Hist } jj
  1673.         if { $jj == 0 } { 
  1674.             catch { saveAs "history.gp" } jj
  1675.         }
  1676.         catch { setWinInfo -w $gp_Hist dirty 0 } jj                                        
  1677.         catch { setWinInfo -w $gp_Hist read-only 1 } jj
  1678.         GP_ClearHistory
  1679.         }
  1680.     } 
  1681.     #end case
  1682.     #        if {$gp_Launched    !=    0 } { 
  1683.     catch { sendQuitEvent \'$GnuplotSig\' } hhh  
  1684.     lappend modifiedVars  GnuplotSig 
  1685.     #            } 
  1686.     set gp_Launched 0
  1687.     set wins [winNames]
  1688.     if { [lsearch $wins $gp_Hist  ]  >= 0} {
  1689.         bringToFront $gp_Hist
  1690.         killWindow 
  1691.     } 
  1692.     lappend modifiedVars   gp_GEOM 
  1693.     lappend modifiedVars   gp_HistGEOM 
  1694.     
  1695.     } elseif {[string first $gp_Hist    $name] == 0} {
  1696.     set wins [winNames]
  1697.     if { [lsearch $wins "$gp_Console" ]  >= 0} {
  1698.         set GPLTmodeVars(LiveHist) 0
  1699.     } 
  1700.     }
  1701.     
  1702.  
  1703. #############################################################################
  1704. #
  1705. #  Redefine the deactivateHook procedure so that gnuplot is quit 
  1706. #  whenever the user closes the console window.  Also ask about 
  1707. #  saving the history list when the console is closed.
  1708. #
  1709. #
  1710.     
  1711. proc GP_DeactivateHook    {name} {
  1712.     global  gp_Hist GPLTmodeVars gp_Console gp_Graph
  1713.     global  gp_GEOM gp_HistGEOM
  1714.     if    { [string first $gp_Hist $name] == 0    } {
  1715.     set gp_HistGEOM [ getGeometry "$gp_Hist" ]
  1716.     endOfBuffer
  1717.     } elseif {[string first "$gp_Console" $name] == 0} {
  1718.     set gp_GEOM [getGeometry "$gp_Console" ]
  1719.     } 
  1720.  
  1721. #############################################################################
  1722. #
  1723. #  Redefine the activateHook procedure so that gnuplot is quit 
  1724. #  whenever the user closes the console window.  Also ask about 
  1725. #  saving the history list when the console is closed.
  1726. #
  1727. #
  1728. proc GP_ActivateHook    {name} {
  1729.     global  gp_Hist gp_Graph gp_Console modifiedArrayElements
  1730.     global  mode gp_cwd GPLTmodeVars mode gp_modflag gp_GEOM
  1731.     
  1732.     if    { [string first "$gp_Console" $name] == 0} {
  1733.     changeMode GPLT
  1734.     set gp_GEOM [ getGeometry "$gp_Console" ]
  1735.     } elseif    { [string first $gp_Hist $name] == 0} {
  1736.     set gp_HistGEOM [ getGeometry "$gp_Hist" ]
  1737.     }
  1738.     
  1739.     message "Current gnuplot Path ==> $gp_cwd"
  1740.  
  1741.  
  1742.  
  1743.  
  1744. ###########################################################################
  1745. #
  1746. # In GNUc mode, cmd-double-click highlights area btween consecutive 
  1747. # gnuplot prompts
  1748. #
  1749.  
  1750. proc GPLT::DblClick {from to} {
  1751.     
  1752.     global gp_Prompts
  1753.     
  1754.     # First find "gnuplot> " prompt above and below cursor entry...
  1755.     # don't forget to deal with "multiplot> " and "> "
  1756.     
  1757.     set gp1 [list]
  1758.     foreach gp $gp_Prompts {lappend gp1 [search -n -f 0 -r 1   $gp $from] }
  1759.     set firstmatch [lindex [lindex $gp1 0 ] 0]
  1760.     foreach el $gp1 { 
  1761.     if {[lindex $el 1] > $firstmatch } { 
  1762.         set firstmatch [lindex $el 0] 
  1763.     } 
  1764.     }    
  1765.     
  1766.     if {$firstmatch == {}} {
  1767.     message "You are not between prompts" 
  1768.     return 
  1769.     } else {
  1770.     
  1771.     set firstmatch [nextLineStart $firstmatch]
  1772.     endOfBuffer
  1773.     set lastmatch [getPos ]
  1774.     set gp1 [list]
  1775.     foreach gp $gp_Prompts {lappend gp1 [search -n -f 1 -r 1   $gp $from] }
  1776.     foreach el $gp1 {
  1777.         if {[lindex $el 1]!={} & [lindex $el 0]< $lastmatch } { 
  1778.         set lastmatch $el 
  1779.         } 
  1780.     }
  1781.     if {$lastmatch == {}} {
  1782.         message "You are not between prompts" 
  1783.         return 
  1784.     } else { 
  1785.         
  1786.         goto $lastmatch
  1787.         beginningOfLine
  1788.         select $firstmatch [getPos] 
  1789.     }
  1790.     }
  1791. }
  1792.  
  1793.  
  1794.  
  1795. #############################################################################
  1796. #
  1797. #  Select creator from list
  1798. #
  1799.  
  1800. proc GP_SelectCreator {} {
  1801.     global gp_CreatorNames  gp_CreatorList   gp_TypeList GPLTmodeVars  
  1802.     global setOutputCreator modifiedArrayElements modifiedVars
  1803.     global gp_CREA gp_TYPE
  1804.     
  1805.     set crea [listpick -p "Select output file creator:" $gp_CreatorNames  ]
  1806.     set creator [lindex $gp_CreatorList [lsearch  $gp_CreatorNames $crea] ]
  1807.     set type [lindex $gp_TypeList [lsearch  $gp_CreatorNames $crea] ]
  1808.     if {$creator == {} } {
  1809.     set gp_CREA 'ALFA'
  1810.     set gp_TYPE 'TEXT' 
  1811.     } else { 
  1812.     set gp_CREA $creator
  1813.     set gp_TYPE $type
  1814.     }
  1815.     lappend modifiedVars  gp_TYPE
  1816.     lappend modifiedVars  gp_CREA
  1817.     lappend modifiedVars  gp_CreatorList 
  1818.     lappend modifiedVars  gp_TypeList
  1819.     lappend modifiedVars  gp_CreatorNames 
  1820. }
  1821.  
  1822.  
  1823. #############################################################################
  1824. #
  1825. #  Add creator to list from file dialog
  1826. #
  1827.  
  1828. proc GP_AddCreator {} {
  1829.     global gp_CreatorNames  gp_CreatorList  GnuplotMenu gp_TypeList 
  1830.     global GPLTmodeVars modifiedVars modifiedArrayElements
  1831.     global gp_CREA gp_TYPE
  1832.     
  1833.     set fname [getfile "Select file type for creator"] 
  1834.     #  add to creator list
  1835.     if {[getFileType $fname]=="APPL"} {
  1836.     alertnote "Sorry, but that was an application. \rTry again."
  1837.     return
  1838.     }
  1839.     
  1840.     if {$fname != {}} {
  1841.     set nm [getline "What do you wish to call it?" [file tail $fname ] ]
  1842.     if {$nm != {} } {   
  1843.         set gp_CREA  [getFileSig $fname]
  1844.         set gp_TYPE  [getFileType $fname]
  1845.         lappend gp_CreatorList  $gp_CREA
  1846.         lappend gp_TypeList     $gp_TYPE
  1847.         lappend gp_CreatorNames $nm
  1848.         enableMenuItem  setOutputCreator "Select..." on
  1849.         enableMenuItem  setOutputCreator "Delete..." on
  1850.         lappend modifiedVars  gp_TYPE
  1851.         lappend modifiedVars  gp_CREA
  1852.         lappend modifiedVars  gp_CreatorList 
  1853.         lappend modifiedVars  gp_TypeList 
  1854.         lappend modifiedVars  gp_CreatorNames 
  1855.     }
  1856.     }
  1857.     
  1858.     
  1859. }
  1860.  
  1861. #############################################################################
  1862. #
  1863. #  Remove creator from list
  1864. #
  1865.  
  1866. proc GP_DeleteCreator {} {
  1867.     global gp_CreatorNames GnuplotMenu gp_CreatorList  gp_TypeList 
  1868.     global GPLTmodeVars modifiedVars modifiedArrayElements
  1869.     global gp_CREA gp_TYPE
  1870.     
  1871.     set crea [listpick -p "Select creator to be deleted:"  $gp_CreatorNames ]
  1872.     
  1873.     if {$crea != {}} {
  1874.     #  now remove this creator from both lists....
  1875.     set creatorInd [lsearch  $gp_CreatorNames $crea]
  1876.     set crea [ lindex $gp_CreatorList $creatorInd]
  1877.     set gp_CreatorNames [ lreplace $gp_CreatorNames $creatorInd $creatorInd ]
  1878.     set gp_CreatorList  [ lreplace $gp_CreatorList  $creatorInd $creatorInd ]
  1879.     set gp_TypeList     [ lreplace $gp_TypeList     $creatorInd $creatorInd ]
  1880.     
  1881.     if {$gp_CREA == $crea } {
  1882.         set gp_CREA 'ALFA'
  1883.         set gp_TYPE 'TEXT'
  1884.     } 
  1885.     lappend modifiedVars  gp_TYPE
  1886.     lappend modifiedVars  gp_CREA
  1887.     lappend modifiedVars  gp_CreatorList 
  1888.     lappend modifiedVars  gp_TypeList 
  1889.     lappend modifiedVars  gp_CreatorNames 
  1890.     }
  1891.     
  1892.     if {[llength $gp_CreatorList] == 0} {
  1893.     enableMenuItem  setOutputCreator "Select..." off
  1894.     enableMenuItem setOutputCreator "Delete..." off
  1895.     }
  1896. }
  1897.  
  1898.  
  1899. #############################################################################
  1900. #
  1901. #  Add command to history list
  1902. #
  1903.  
  1904. proc GP_AddToHist  { cmmd } {
  1905.     global gp_CommandHist gp_CommandNum GnuplotMenu 
  1906.     global GP_Console gp_Hist GPLTmodeVars
  1907.     
  1908.     enableMenuItem gnuplotOptions "clearHistory" on
  1909.     lappend gp_CommandHist $cmmd
  1910.     set gp_CommandNum [llength $gp_CommandHist]
  1911.     
  1912.     if { $GPLTmodeVars(LiveHist) } {
  1913.     # if history list active then append $cmmd on last line
  1914.     set wins [winNames]
  1915.     if { [lsearch $wins $gp_Hist ]  >= 0} {
  1916.         setWinInfo -w $gp_Hist dirty 1
  1917.         setWinInfo -w $gp_Hist  read-only 0
  1918.         insertText -w $gp_Hist "$cmmd\r"
  1919.         setWinInfo -w $gp_Hist  dirty 0
  1920.         setWinInfo    -w $gp_Hist  read-only 1
  1921.     } else {
  1922.         GP_DumpHistory
  1923.         bringToFront "$gp_Console"
  1924.     }
  1925.     
  1926.     }
  1927. }
  1928.  
  1929.  
  1930. #############################################################################
  1931. #
  1932. #  Clear History list 
  1933. #
  1934.  
  1935. proc GP_ClearHistory {} {
  1936.     global  GnuplotMenu gp_CommandHist gp_CommandNum  gp_Hist
  1937.     
  1938.     set gp_CommandHist [list]
  1939.     set gp_CommandNum "0"
  1940.     enableMenuItem gnuplotOptions "clearHistory" off    
  1941.     set wins [winNames]
  1942.     if { [lsearch $wins $gp_Hist ] >= 0} {
  1943.     bringToFront $gp_Hist
  1944.     killWindow 
  1945.     }
  1946. }
  1947.  
  1948.  
  1949. #############################################################################
  1950. #
  1951. #  Write History list into a window of its own.
  1952. #
  1953.  
  1954. proc GP_DumpHistory {} {
  1955.     global gp_CommandHist gp_CommandNum gp_Console 
  1956.     global GPLTmodeVars gp_Console gp_Hist  
  1957.     global gp_GEOM
  1958.     
  1959.     set wins [winNames]
  1960.     set nw [ llength $wins ]
  1961.     
  1962.     if { [lsearch $wins $gp_Hist ]  == -1} {
  1963.     
  1964.     set l [ expr [lindex $gp_GEOM 0] + 12 + [lindex $gp_GEOM 2] ]
  1965.     set t [ expr [lindex $gp_GEOM 1] + 65 ]
  1966.     set w 96
  1967.     set h [ expr [lindex $gp_GEOM 3] - 65 ]
  1968.     new -n $gp_Hist -g $l $t $w $h -m GPLT
  1969.     set gp_HistGEOM [getGeometry]        
  1970.     GP_uFD
  1971.     set scriptName "# (<cr> to send to gnuplot)\r#-----\r"
  1972.     foreach word $gp_CommandHist  {append  scriptName  $word "\r" }
  1973.     insertText  -w $gp_Hist $scriptName
  1974.     setWinInfo dirty 0
  1975.     setWinInfo read-only 1
  1976.     } else {
  1977.     bringToFront $gp_Hist
  1978.     }
  1979. }
  1980.  
  1981.     
  1982.  
  1983. ################################################################################
  1984. #
  1985. #  Insert File Description---use Vince's if possible.  
  1986. #      this used in creating new window and in dumping history list
  1987. #
  1988.  
  1989. proc GP_uFD { } {
  1990.     #catch {userFileDescription } ans 
  1991.     #if {     $ans != ""    }  {
  1992.     insertText "#\r#\r#     " [join [mtime [now] long] ] "\r"
  1993.     nextLine
  1994.     #}
  1995.     endOfBuffer
  1996. }
  1997.  
  1998.  
  1999. ################################################################################
  2000. #
  2001. #  Clear a few globals...
  2002. #
  2003. #
  2004. #
  2005. proc GP_Clear {} {
  2006.     global PREFS  GPLTmodeVars
  2007.     global  gp_CreatorList gp_CreatorNames  
  2008.     global gp_GEOM gp_HistGEOM modifiedVars
  2009.     global gp_CREA gp_TYPE
  2010.     
  2011.     if { [info exists gp_GEOM] } { set gp_GEOM [list] }      
  2012.     if { [info exists gp_CreatorList] } { unset gp_CreatorList }      
  2013.     if { [info exists gp_TypeList] } { unset gp_TypeList }      
  2014.     if { [info exists gp_CreatorNames] } { unset gp_CreatorNames }      
  2015.     if { [info exists gp_HistGEOM] } { unset gp_HistGEOM  }      
  2016.     if { [info exists gp_CREA] } { unset gp_CREA  }      
  2017.     if { [info exists gp_TYPE] } { unset gp_TYPE  }      
  2018.     
  2019.     ensureset gp_CreatorList [list ALFA GPLT ] 
  2020.     ensureset gp_TypeList [list TEXT TEXT ] 
  2021.     ensureset gp_CreatorNames [list alpha gnuplot] 
  2022.     ensureset gp_CREA ALFA
  2023.     ensureset gp_TYPE TEXT
  2024.     ensureset gp_GEOM [list]
  2025.     ensureset gp_HistGEOM [list ]
  2026.     
  2027.     if { [llength $gp_CreatorList] == 0 \
  2028.       || [llength $gp_CreatorList] != [llength $gp_CreatorNames] \
  2029.       || [llength $gp_CreatorList] != [llength $gp_TypeList]} {
  2030.     set gp_CreatorList [list]
  2031.     set gp_TypeList [list]
  2032.     set gp_CreatorNames [list]
  2033.     }
  2034.     
  2035.     lappend modifiedVars gp_CreatorNames gp_TypeList gp_CreatorList 
  2036.     lappend modifiedVars gp_HistGEOM gp_GEOM
  2037.     lappend modifiedVars gp_TYPE gp_CREA
  2038.     #catch { source $PREFS:gnuplotMode.tcl } blah
  2039.     #catch { source $HOME:Tcl:Modes:gnuplotMode.tcl } blah
  2040. }
  2041.  
  2042.  
  2043. ################################################################################
  2044. #
  2045. #  History goto match...
  2046. #
  2047. #
  2048. #
  2049.  
  2050. proc GP_HistgotoMatch {} {
  2051.     set frst [lineStart [getPos] ]
  2052.     endOfLine
  2053.     set lst  [getPos]
  2054.     endOfBuffer
  2055.     beginningOfLine
  2056.     GP_SendCommand [getText $frst $lst ] 1000
  2057. }
  2058.  
  2059.  
  2060.  
  2061.  
  2062.  
  2063. ################################################################################
  2064. #
  2065. #  Create floating menu
  2066. #
  2067. #
  2068. #
  2069.  
  2070. set GP_GraphMenu "gnuplotGraph"
  2071.  
  2072. set gp_grmen [list "Menu  -n $GP_GraphMenu -p GnuplotMenuItem" ]
  2073. lappend gp_grmen "gnuplot" "(-" 
  2074.  
  2075. Menu  -n $GP_GraphMenu -p GnuplotMenuItem   [ concat \
  2076.   "gnuplot" \
  2077.   ]
  2078.  
  2079.      
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085. ################################################################################
  2086. #
  2087. #  run load scripts from scripts menu
  2088. #
  2089. #
  2090. #
  2091.  
  2092. proc GP_ScriptMenuItems {menu item} {
  2093.     global gp_sl gp_home gp_scriptItems gp_Path  gp_openItems
  2094.     
  2095.     set men [string tolower $menu]
  2096.     set ite [string tolower $item]
  2097.     
  2098.     if { "$item" == "Rebuild Menu" } {
  2099.     set cdir [pwd]
  2100.     set sl [expr [string length $gp_Path ] - 2] 
  2101.     cd [string range $gp_Path 0 $sl ]
  2102.     GP_RebuildScriptMenu
  2103.     cd "$cdir"
  2104.     return 0
  2105.     }
  2106.     
  2107.     foreach it $gp_scriptItems {
  2108.     if { [string match "cd \'*$men:\'; load \'*$men:$ite\'" [string tolower $it] ] } {
  2109.         GP_SendCommand "$it" 110
  2110.         return 0
  2111.     }      
  2112.     }
  2113.     
  2114.     #set men [string tolower [string range $menu 5 [string length $menu] ] ]
  2115.     
  2116.     # filter out the "• edit "  from the selected $menu $item
  2117.     set ite [string tolower [string range $item 7 [string length $item] ] ]
  2118.     
  2119.     foreach it $gp_openItems {
  2120.     if { [string match "*$men:$ite" [string tolower $it] ] } {
  2121.         edit "$it" 
  2122.         changeMode GPLT 
  2123.         return 0
  2124.     }      
  2125.     }
  2126. }
  2127.  
  2128.  
  2129.  
  2130. ################################################################################
  2131. #
  2132. #  Create a floating gnuplot graph button (Alpha 6.2 or higher)
  2133. #
  2134. #
  2135. #
  2136. proc GP_GraphButton {} {    
  2137.     global gp_floatmenu GP_GraphMenu GPLTmodeVars gp_sl gp_Path gp_GEOM gp_FLTGEOM
  2138.     
  2139.     
  2140.     #    if {[llength $gp_FLTGEOM] != 2 } {    
  2141.     if {[llength $gp_GEOM] == 4 } {
  2142.     set l [ expr [lindex $gp_GEOM 0] + 5 + [lindex $gp_GEOM 2] ]
  2143.     set t [ expr [lindex $gp_GEOM 1] - 20 ]
  2144.     set gp_FLTGEOM [list $l $t ] 
  2145.     } else {
  2146.     set l 20
  2147.     set t 20
  2148.     }
  2149.     #    }  else {
  2150.     #          set l  [lindex $gp_FLTGEOM 0]  
  2151.     #          set t  [lindex $gp_FLTGEOM 1]  
  2152.     #    }
  2153.     
  2154.     if {$GPLTmodeVars(GraphButton) } { 
  2155.     if { (![info exists  gp_floatmenu] )} {
  2156.         set gp_floatmenu [float -m $GP_GraphMenu -n "" -M -1 -z GPLT -l $l -t $t ]
  2157.     } 
  2158.     
  2159.     } 
  2160.     
  2161. }
  2162.  
  2163.  
  2164.  
  2165. ################################################################################
  2166. #
  2167. #  Generate the script menu 
  2168. #      
  2169. #
  2170.  
  2171. proc GP_ScriptList { sdir men } {
  2172.     global gp_scriptItems  gp_openItems
  2173.    
  2174.     if {"$men" == "Scripts" } {
  2175.         set sl [list "\(Rebuild Menu"]
  2176.     } else {
  2177.         set sl [list]
  2178.     }
  2179.     
  2180.     # get the list of text files in $sdir
  2181.     set gp_fl [ glob -nocomplain -t TEXT "$sdir"] 
  2182.     set mdir [string range "$sdir" 0 [expr [string length "$sdir"] - 2 ] ] 
  2183.     set rdir [string range "$mdir" 0 [expr [string length "$mdir"] -1 ] ]
  2184.     foreach f $gp_fl {
  2185.     set mitem [string range $f [expr 1 + [string last ":" "$f" ] ] [ string length "$f" ] ]
  2186.     #append mitem "&"
  2187.     if { $mitem != "" } { 
  2188.         lappend sl "<E<S$mitem" 
  2189.         lappend sl "<S<I• edit $mitem" 
  2190.         lappend sl "<S<B• edit $mitem" 
  2191.         lappend sl "<S<U• edit $mitem" 
  2192.         lappend sl "<S<O• edit $mitem" 
  2193.         lappend gp_scriptItems "cd \'$rdir\'; load \'$f\'"
  2194.         lappend gp_openItems "$f"
  2195.     }
  2196.     }
  2197.     
  2198.     # get the list of aliased directories in $sdir and
  2199.     # perform this operation again on subdirectories
  2200.     set dlist [ glob   -t fdrp -nocomplain "$sdir"]
  2201.     foreach d $dlist {
  2202.     set dn [string range $d [expr [string last ":" "$d" ] +1 ] [string length $d]   ]
  2203.     #set dn [string range $dn [expr 1 + [string last ":" "$dn" ] ] [ string length "$dn" ] ]
  2204.     set sl [concat "$sl"  [concat " \{Menu -m -n" "\"$dn\"" -p GP_ScriptMenuItems  " \{  "  ] ]
  2205.     set dnam $d
  2206.     append dnam "*" 
  2207.     #set gp_ssl [ GP_ScriptList "$dnam" $dn ]
  2208.     set gp_ssl [list "(ALIASED FOLDERS NOT WORKING YET"]
  2209.     set sl [ concat "$sl "  $gp_ssl " \}  \} " ]
  2210.     }
  2211.     
  2212.     # get the list of directories in $sdir and
  2213.     # perform this operation again on subdirectories
  2214.     set dlist [ glob -nocomplain  "$sdir:"]
  2215.     foreach d $dlist {
  2216.     set dn [string range $d 0 [expr [string last ":" "$d" ] - 1 ]  ]
  2217.     set dn [string range $dn [expr 1 + [string last ":" "$dn" ] ] [ string length "$dn" ] ]
  2218.     set sl [concat "$sl"  [concat " \{Menu -m -n" "\"$dn\"" -p GP_ScriptMenuItems  " \{  "  ] ]
  2219.     set dnam $d
  2220.     append dnam "*" 
  2221.     set gp_ssl [ GP_ScriptList "$dnam" $dn ]
  2222.     set sl [ concat "$sl "  $gp_ssl " \}  \} " ]
  2223.     }
  2224.     
  2225.     return  $sl 
  2226. }
  2227.  
  2228.  
  2229. ################################################################################
  2230. #
  2231. #  Kill a floating gnuplot menu (Alpha 6.2 or higher)
  2232. #
  2233. #
  2234. #
  2235. proc GP_KillGraphButton {} {    
  2236.     global gp_floatmenu GnuplotMenu GPLTmodeVars 
  2237.     
  2238.     if { [info exists  gp_floatmenu] }  { 
  2239.     catch {unfloat $gp_floatmenu } ans
  2240.     unset gp_floatmenu
  2241.     }
  2242. }
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248. ################################################################################
  2249. #
  2250. #  Load a script into gnuplot 
  2251. #      
  2252. #
  2253.  
  2254. proc GP_LoadScript {} {
  2255.     global gp_cwd
  2256.     catch { cd "$gp_cwd" } hmm
  2257.     set GPLTFile [ getfile "Choose a script to load:" ]
  2258.     if { $GPLTFile != "" } {    
  2259.     GP_SendCommand  "load \'$GPLTFile\'" 120
  2260.     }
  2261. }
  2262.  
  2263.  
  2264.  
  2265. ################################################################################
  2266. #
  2267. #  Tell gnuplot to save settings...
  2268. #
  2269. #
  2270. #
  2271.  
  2272. proc GP_SaveSettings { what } {
  2273.     global  GPLTmodeVars gp_cwd gp_TYPE gp_CREA
  2274.     
  2275.     catch { cd "$gp_cwd" } hmm
  2276.     set tCREA $gp_CREA
  2277.     set tTYPE $gp_TYPE
  2278.     set gp_CREA {ALFA}
  2279.     set gp_TYPE {TEXT}
  2280.     set where [ putfile "Save current gnuplot settings" \
  2281.       [format "gnuplot%src.gp" [string toupper $what ] ] ]
  2282.     if { $where != "" } { 
  2283.     GP_SendCommand "save $what \'$where\'" 130
  2284.     }
  2285.     set gp_CREA  $tCREA
  2286.     set gp_TYPE  $tTYPE
  2287. }
  2288.  
  2289.  
  2290.  
  2291. ################################################################################
  2292. #
  2293. #  Tell gnuplot where the current dir is...
  2294. #
  2295. #
  2296. #
  2297.  
  2298. proc GP_SetCWD {} {
  2299.     set gp_cwd [ get_directory -p "Select gnuplot working folder"]
  2300.     if { $gp_cwd != "" } {
  2301.     GP_SendCommand "cd \'$gp_cwd\'" 140
  2302.     }
  2303. }
  2304.  
  2305.  
  2306.  
  2307. ################################################################################
  2308. #
  2309. #  Tell gnuplot to change the point size
  2310. #
  2311. #
  2312. #
  2313.  
  2314. proc GP_SetPTSZ {} {
  2315.     GP_SendCommand " set pointsize [ getline "Enter point size" 1 ] " 150
  2316. }
  2317.  
  2318. ################################################################################
  2319. #
  2320. #  Choose a file to plot and write "plot 'filename'" on command line
  2321. #
  2322. #
  2323. #
  2324.  
  2325. proc GP_ChoosePlotFile { } {
  2326.     global gp_Console gp_cwd
  2327.     catch { cd "$gp_cwd" } hmm
  2328.     set plotfile [ getPathName "Choose a file to plot" 1 ] 
  2329.     if { $plotfile != "" } {
  2330.     insertText -w "$gp_Console" "plot \'$plotfile\' "
  2331.     }
  2332. }
  2333.  
  2334.  
  2335. ################################################################################
  2336. #
  2337. #  Setup menu flags, etc ... assuming gnuplot is off
  2338. #
  2339. #
  2340. #
  2341. proc GP_OffSet {} {
  2342.     global GnuplotMenu gp_CreatorList
  2343.     
  2344.     enableMenuItem gnuplotOptions "clearHistory" off                 
  2345.     enableMenuItem $GnuplotMenu "quit gnuplot" off                 
  2346.     enableMenuItem $GnuplotMenu "graph" off                 
  2347.     enableMenuItem $GnuplotMenu "history" off                 
  2348.     enableMenuItem $GnuplotMenu "saveSettings" off  
  2349.     enableMenuItem gnuplotOptions "setPointSize..." off  
  2350.     enableMenuItem $GnuplotMenu "setWorkingFolder..." off
  2351.     enableMenuItem $GnuplotMenu "choosePlotFile..."     off
  2352.     
  2353.     if {[llength $gp_CreatorList] == 0} {
  2354.     enableMenuItem  setOutputCreator "Select..." off
  2355.     enableMenuItem  setOutputCreator "Delete..." off
  2356.     }
  2357.     
  2358. }
  2359.  
  2360. ################################################################################
  2361. #
  2362. #  TEMPORARY JUNK
  2363. #
  2364. #
  2365. #
  2366. set gp_cwd "???"
  2367.  
  2368. proc aevt { hmm } { 
  2369.     #dummy procedure to fool 68k into semi-working w/eventHandler....
  2370.     if { $hmm == "'GP_A'()" } {
  2371.     GP_Activate
  2372.     } elseif {$hmm=="'GP_C'()" } {
  2373.     GP_Results "gnuplot> "
  2374.     
  2375.     }    
  2376. }
  2377.      
  2378.  
  2379. ################################################################################
  2380. #
  2381. #  Things to do in order to properly setup gnuplot mode menu
  2382. #
  2383. #
  2384. #
  2385. set gp_modflag 0
  2386. GP_OffSet
  2387.  
  2388.  
  2389. ################################################################################
  2390. #
  2391. #  A simple user message
  2392. #
  2393. #
  2394. #
  2395. proc GP_Readme {} {    
  2396.   set wname "message"
  2397.   new -n $wname -m GPLT
  2398.   GP_uFD
  2399.  
  2400.   insertText { 
  2401. #
  2402.    gnuplotMode.tcl Version 1.82
  2403.  
  2404. #   NEWSTUFF:
  2405. #   ---------
  2406.  
  2407.    This version has a simple floating menu with a button that lists
  2408.    all texts files in the scripts directory of gnuplot home dir.
  2409.    To run a script, just select it from the scripts menu.  To edit
  2410.    a script in Alpha, select a script menu item while holding down a 
  2411.    modifier key (shift, option, command, OR ctrl).
  2412.  
  2413.  
  2414.    Modify some of the GPLT mode behaviour by choosing the menu item:
  2415.  
  2416. #     Config:Current Mode:Flags...
  2417.  
  2418.  
  2419.    To edit keyword coloring choose the configure menu item:
  2420.  
  2421. #     Config:Current Mode:Edit Prefs
  2422.  
  2423.  
  2424.  
  2425. #   GNUPLOT works best with Alpha 6.2 or later
  2426. #   ------------------------------------------
  2427.  
  2428. #   FOR 68K USERS ONLY
  2429. #   ------------------
  2430.  
  2431.    Recent versions of Alpha (<6.2) do not have a fully working      
  2432.    eventHandler procedure.  Thus, you might notice strange behavior  
  2433.    in the gnuplot console.  The symptoms of the problem are that     
  2434.    a new gnuplot prompt may not be displayed on the screen after     
  2435.    pressing a carriage return;  or, longer messages may be garbled. 
  2436.   
  2437.    Try the following: 
  2438.  
  2439. #      set term post
  2440. #      plot sin(x)
  2441.  
  2442.    If you see pages of postscript output, then the eventHandler is 
  2443.    apparently working.
  2444.  
  2445.    If not, then to make effective use of the console you may need   
  2446.    to open the Config:Current Mode:flags... menu in Alpha (when in  
  2447.    
  2448.    Keep an eye out at ftp://www.cs.umd.edu/pub/faculty/keleher/Alpha
  2449.    for the latest versions of Alpha which will eventually solve      
  2450.    this problem.
  2451.  
  2452. #   jeff@wave.nrl.navy.mil 
  2453. }    
  2454.    
  2455.   setWinInfo -w $wname dirty 0
  2456.      
  2457. }
  2458.  
  2459.  
  2460. #############################################################################
  2461. #
  2462. #  change behavior of editCurrentModePrefs
  2463. #
  2464.  
  2465. proc GP_editCurrentModePrefs { } {
  2466.     global mode GPLTmodeVars gp_modflag PREFS gp_HistGEOM gp_GEOM
  2467.     global GnuplotMenu  gp_Graph gp_Console  gp_Hist 
  2468.     global PREFS HOME 
  2469.     
  2470.     set wins  [winNames]
  2471.     set jjwinThere [lsearch $wins "GPLTPrefs.tcl"]
  2472.     set searchString1 {[\n\r]###BGK[\n\r](.*)[\n\r]###EGK[\n\r]}
  2473.     
  2474.     if { $jjwinThere >= 0} {
  2475.     set ss [searchInFile [file join $PREFS GPLTPrefs.tcl]  "$searchString1" ]
  2476.     if { $ss == "" } {
  2477.         goto [maxPos]
  2478.         if {$ss == ""} {                                                   
  2479.         set ss [searchInFile [file join $HOME Tcl Modes gnuplotMode.tcl] \
  2480.           "$searchString1" ]
  2481.         } 
  2482.         if {$ss == ""} {                                                   
  2483.         alertnote "Sorry, you'll have to edit gnuplotMode.tcl on your own."
  2484.         } else {
  2485.         insertText -w "GPLTPrefs.tcl" "\n\n$ss\n\n"
  2486.         goto [nextLineStart [minPos]]
  2487.         }
  2488.     }
  2489.     }
  2490. }
  2491.  
  2492.  
  2493. set gp_fm_first 1
  2494.  
  2495.  
  2496.  
  2497. #############################################################################
  2498. #
  2499. #  Called from menu to handle dialogs in the server app
  2500. #  
  2501. #
  2502. proc GP_Dialog { ans } {
  2503.     global  GnuplotSig
  2504.     switchTo  \'$GnuplotSig\'
  2505.     AEBuild -t 3600 -r 'GPSE' GPLT "DIAG" ---- $ans
  2506.     switchTo 'ALFA'
  2507. }
  2508.  
  2509.  
  2510.  
  2511.  
  2512.